body {
  margin: 0;
  font-size: 12px;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
}
@media (min-width: 1600px) {
  body {
    font-size: 13px;
  }
}
.komprise-logo > img {
  width: 118px;
}
.login-content-wpr {
  display: flex;
  justify-content: center;
  margin-top: 22vh;
}
.login-content {
  display: inline-block;
}
.form-header {
  font-size: 24px;
  margin-bottom: 24px;
  font-weight: 300;
}
.form-sub-header {
  display: block;
  margin-bottom: 16px;
}
.field-label {
  font-weight: 600;
}
.email-section,
.password-section {
  padding-top: 8px;
}
.login-input {
  background: #ffffff;
  border: 1px solid #d8d9e0;
  border-radius: 3px;
  width: 240px;
  padding: 7px 10px;
  margin-top: 3px;
  margin-right: 14px;
  outline: none;
}
.login-input:focus {
  border-color: #148bc3;
}
input.error-border {
  border: 1px solid #ff1d25;
  border-radius: 3px;
  box-shadow: 0 0 4px 0 rgba(255, 29, 37, 0.4);
}
.cta-btn {
  width: 145px;
  margin-top: 10px;
  padding: 10px;
  color: white;
  background: #148bc3;
  border-radius: 2px;
  border: none;
  min-height: 35px;
}
.cta-btn:hover {
  cursor: pointer;
  background: #0c638c;
}
.cta-btn.disabled {
  background-color: #d8d9e0;
  cursor: not-allowed;
  color: #b7b8bf;
}
.forgot-password {
  line-height: 16px;
  color: #148bc3;
  white-space: nowrap;
}
.input-error {
  min-height: 14px;
  font-size: 10px;
  color: #ff1d25;
  padding-top: 3px;
}
.k-toaster {
  padding-left: 5px;
  line-height: 28px;
}
.k-toaster.validation {
  color: #1e1f26;
  background: #ce4157;
  margin-top: 8px;
}
.k-toaster-content {
  display: flex;
  align-items: baseline;
  line-height: 15px;
  padding: 7px 5px 7px 10px;
  color: #1e1f26;
  background: #f0f1f8;
}
.back-to-login {
  color: #148bc3;
}

.d-block {
  display: block !important;
}
.d-none {
  display: none !important;
}

.login-loader {
  display: inline-block;
  position: relative;
  width: 15px;
  height: 15px;
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
}
.login-loader div {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 50%;
}
.login-loader div:nth-child(1) {
  top: 6px;
  left: 12px;
}
.login-loader div:nth-child(2) {
  top: 1.7px;
  left: 10.4px;
}
.login-loader div:nth-child(3) {
  top: 0px;
  left: 6px;
}
.login-loader div:nth-child(4) {
  top: 1.7px;
  left: 1.6px;
}
.login-loader div:nth-child(5) {
  top: 6px;
  left: 0px;
}
.login-loader div:nth-child(6) {
  top: 10.4px;
  left: 1.8px;
}
.login-loader div:nth-child(7) {
  top: 12px;
  left: 6px;
}
@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
